home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Headers / eoadaptors / Sybase / SybaseUtilities.h < prev   
Encoding:
Text File  |  1994-05-12  |  795 b   |  33 lines

  1. //  SybaseUtilities.h
  2. //  Copyright 1994, NeXT Computer, Inc.
  3.  
  4. #import <objc/objc-runtime.h>
  5.  
  6. // Don't use this category for now, objects that are to be stored in
  7. // Sybase image columns should just be archived and unarchived
  8. #if 0
  9. // This is here temporarily until I figure out a better place for it.
  10. // Probably should go in the libdbui shlib
  11. #import <appkit/appkit.h>
  12.  
  13. @interface NXImage (CustomClassMethods)
  14. - initWithData:(NSData *)data type:(NSString *)string;
  15. - (NSData *)dataWithFormat:(NSString *)format;
  16. @end
  17.  
  18. #endif
  19.  
  20. @interface Object (ForwardsCompatibility)
  21. + (BOOL)instancesRespondToSelector:(SEL)sel;
  22. @end
  23.  
  24. @interface NSArray (MutableCreation)
  25. - (NSMutableArray *)createMutableArray;
  26. @end
  27.  
  28. @interface NSMutableArray (MutableCreation)
  29. - (NSMutableArray *)createMutableArray;
  30. @end
  31.  
  32.  
  33.